/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.x                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
    (0 0 0)	//0
    (3 0 0)	//1
    (3 1 0)	//2
    (0 1 0)	//3
    (0 0 0.3)	//4
    (3 0 0.3)	//5
    (3 1 0.3)	//6
    (0 1 0.3)	//7
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (100 2000 1) simpleGrading (1 3 1)
);

edges
(
);

boundary
(
    topAir_top    // Top side of big block
    {
        type patch;
        faces
        (
            (3 7 6 2)
        );
    }
  
    leftLet     // Left Side of big box
    {
        type patch;
        faces
        (
            (0 4 7 3)
        );
    }
    rightLet   // Right Side of big box
    {
        type patch;
        faces
        (
            (2 6 5 1)
        );
    }
    frontAndBack
    {
        type empty;
        faces
        (
            (0 3 2 1)
            (4 5 6 7)
        );
    }
);

mergePatchPairs
(
);

// ************************************************************************* //
